Socket
Socket
Sign inDemoInstall

lodash.foreach

Package Overview
Dependencies
Maintainers
5
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lodash.foreach

The modern build of lodash’s `_.forEach` as a module.


Version published
Maintainers
5
Created

What is lodash.foreach?

The lodash.foreach package is a utility library that provides a method for iterating over elements of a collection (arrays, objects, and strings) and invoking a function for each element. It is part of the larger Lodash library, which is known for its utility functions for common programming tasks.

What are lodash.foreach's main functionalities?

Iterating over arrays

This feature allows you to iterate over each element in an array and perform an action on each element. In this example, it logs each value in the array to the console.

const forEach = require('lodash.foreach');
const array = [1, 2, 3];
forEach(array, function(value) {
  console.log(value);
});

Iterating over objects

This feature allows you to iterate over each key-value pair in an object and perform an action on each pair. In this example, it logs each key and value to the console.

const forEach = require('lodash.foreach');
const object = { 'a': 1, 'b': 2, 'c': 3 };
forEach(object, function(value, key) {
  console.log(key, value);
});

Iterating over strings

This feature allows you to iterate over each character in a string and perform an action on each character. In this example, it logs each character to the console.

const forEach = require('lodash.foreach');
const string = 'abc';
forEach(string, function(value) {
  console.log(value);
});

Other packages similar to lodash.foreach

Keywords

FAQs

Package last updated on 16 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc